+2004-05-21 Raymond Penners <raymond@dotsphinx.com>
+
+ * configure.in: Bump version number (0.6.0)
+
+ * src/msw_style.c: Applied patch by John Ehresman that fixes a
+ memory leak.
+
2004-05-21 Dom Lachowicz <cinamod@hotmail.com>
* src/Theme/gtk-2.0/gtkrc: Better icon sizes
{
char buf[256], * font; /* It's okay, lfFaceName is smaller than 32 chars */
- if ((font = sys_font_to_pango_font(XP_THEME_CLASS_TEXT, XP_THEME_FONT_MESSAGE, buf, sizeof (buf))) != NULL)
- style->font_desc = pango_font_description_from_string(font);
+ if ((font = sys_font_to_pango_font(XP_THEME_CLASS_TEXT,
+ XP_THEME_FONT_MESSAGE,
+ buf, sizeof (buf))) != NULL)
+ {
+ if (style->font_desc)
+ {
+ pango_font_description_free (style->font_desc);
+ }
+ style->font_desc = pango_font_description_from_string(font);
+ }
}
static void